Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

263
Views
"cat /dev/random" versus "tail -f /dev/random"

Statement

cat /dev/random

keeps producing output, as expected, but

tail -f /dev/random

hangs (at least on OSX and SUSE). Why the latter statement hangs?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

tail -f does several things:

  1. Find the end of the stream, either by reading until reaching an EOF or by doing a seek to the end (an operation not available on /dev/random).
  2. Back up a certain length (possibly by retaining a buffer of an appropriate length of contents recently read, possibly by retaining a list of seek positions for the last N lines during the initial scan, or by some other means), and print the contents between that point and the end.
  3. Continue to print new contents past that point as such contents become available.

If there is no end -- as is the case for /dev/random -- that first step will never complete.

cat does not need to find an end to seek back from it, and so it has no point of failure associated.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!